home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
workbench
/
libs
/
unixlib.lha
/
unix
/
include
/
string.h
< prev
next >
Wrap
C/C++ Source or Header
|
1996-11-09
|
589b
|
27 lines
#ifndef UNIX_STRING_H
#define UNIX_STRING_H 1
#include "include:string.h"
/* Nonstandard routines */
#if !defined(_ANSI_SOURCE) && !defined(_STRICT_ANSI)
#ifdef NO_MACROS
#undef index
#undef rindex
#undef bcopy
#undef bcmp
#undef bzero
extern char *index(const char *, int);
extern char *rindex(const char *, int);
extern void bcopy(const void *, void *, size_t);
extern int bcmp(const void *, const void *, size_t);
extern void bzero(void *, size_t);
#endif
extern int strcasecmp(const char *, const char *);
extern int strncasecmp(const char *, const char *, size_t);
#endif
#endif